public class SomeException: Exception, ISerializble{
    public SomeException();
    public SomeException(string message);
    public SomeException(stirng message, Exception inner);
    
    //序列化需要
    protect SomeException(SerializationInfo info, StreamingContext context);
}